home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Clipart Library (Powersource)
/
Clipart Library.iso
/
program
/
prog_c
/
hgrph101.arc
/
MAN.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1989-02-25
|
277 b
|
17 lines
#include <conio.h>
#include "hgraph.h"
extern void mandel( double, double, double, double);
void main()
{
int i;
hgraph_init();
hgmode();
hshowpg();
mandel(0.0, 1.0, 0.0, 1.0);
i = getch();
htmode();
}